home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
011
/
dsktst.arc
/
LOCATE.C
< prev
Wrap
Text File
|
1985-08-06
|
640b
|
17 lines
#include "dos.h"
/******************************************************************************
* *
* locate the cursor *
* *
******************************************************************************/
locate(row,col) /* cursor row, col, attribute */
int row,col;
{
union REGS reg;
reg.h.bh = 0; /* page number */
reg.h.dh = row; /* set row number */
reg.h.dl = col; /* set col number */
reg.h.ah = 2; /* set csr command */
int86(0x10,®,®); /* clr the screen */
}